Appearance
程序调试是为了监测和查看程序运行时的每个阶段的状态,主要有以下好处:
lis = [] for i in range(10): lis.append(i*i) #可以设置此行为断点,分步执行程序 print(lis)